home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / make-3.69 / news < prev    next >
Encoding:
Text File  |  1993-11-03  |  17.5 KB  |  482 lines

  1. GNU make NEWS -- history of user-visible changes.  3 November 1993
  2.  
  3. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  4. See the end for copying conditions.
  5.  
  6. Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
  7.  
  8. Version 3.69
  9.  
  10. * Implicit rule search for archive member references is now done in the
  11.   opposite order from previous versions: the whole target name `LIB(MEM)'
  12.   first, and just the member name and parentheses `(MEM)' second.
  13.  
  14. * Make now gives an error for an unterminated variable or function reference.
  15.   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
  16.  
  17. * The new default variable `MAKE_VERSION' gives the version number of
  18.   Make, and a string describing the remote job support compiled in (if any).
  19.   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
  20.  
  21. * Commands in an invocation of the `shell' function are no longer run with
  22.   a modified environment like target commands are.  As in versions before
  23.   3.68, they now run with the environment that `make' started with.  We
  24.   have reversed the change made in version 3.68 because it turned out to
  25.   cause a paradoxical situation in cases like:
  26.  
  27.     export variable = $(shell echo value)
  28.  
  29.   When Make attempted to put this variable in the environment for a target
  30.   command, it would try expand the value by running the shell command
  31.   `echo value'.  In version 3.68, because it constructed an environment
  32.   for that shell command in the same way, Make would begin to go into an
  33.   infinite loop and then get a fatal error when it detected the loop.
  34.  
  35. * The commands given for `.DEFAULT' are now used for phony targets with no
  36.   commands.
  37.  
  38. Version 3.68
  39.  
  40. * You can list several archive member names inside parenthesis:
  41.   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
  42.  
  43. * You can use wildcards inside archive member references.  For example,
  44.   `lib(*.o)' expands to all existing members of `lib' whose names end in
  45.   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
  46.   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
  47.   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
  48.  
  49. * A suffix rule `.X.a' now produces two pattern rules:
  50.     (%.o): %.X    # Previous versions produced only this.
  51.     %.a: %.X    # Now produces this as well, just like other suffixes.
  52.  
  53. * The new flag `--warn-undefined-variables' says to issue a warning message
  54.   whenever Make expands a reference to an undefined variable.
  55.  
  56. * The new `-include' directive is just like `include' except that there is
  57.   no error (not even a warning) for a nonexistent makefile.
  58.  
  59. * Commands in an invocation of the `shell' function are now run with a
  60.   modified environment like target commands are, so you can use `export' et
  61.   al to set up variables for them.  They used to run with the environment
  62.   that `make' started with.
  63.  
  64. Version 3.66
  65.  
  66. * `make --version' (or `make -v') now exits immediately after printing
  67.   the version number.
  68.  
  69. Version 3.65
  70.  
  71. * Make now supports long-named members in `ar' archive files.
  72.  
  73. Version 3.64
  74.  
  75. * Make now supports the `+=' syntax for a variable definition which appends
  76.   to the variable's previous value.  See the section `Appending More Text
  77.   to Variables' in the manual for full details.
  78.  
  79. * The new option `--no-print-directory' inhibits the `-w' or
  80.   `--print-directory' feature.  Make turns on `--print-directory'
  81.   automatically if you use `-C' or `--directory', and in sub-makes; some
  82.   users have found this behavior undesirable.
  83.  
  84. * The built-in implicit rules now support the alternative extension
  85.   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
  86.  
  87. Version 3.63
  88.  
  89. * Make now uses a standard GNU `configure' script.  See the new file
  90.   INSTALL for the new (and much simpler) installation procedure.
  91.  
  92. * There is now a shell script to build Make the first time, if you have no
  93.   other `make' program.  `build.sh' is created by `configure'; see README.
  94.  
  95. * GNU Make now completely conforms to the POSIX.2 specification for `make'.
  96.  
  97. * Elements of the `$^' and `$?' automatic variables that are archive
  98.   member references now list only the member name, as in Unix and POSIX.2.
  99.  
  100. * You should no longer ever need to specify the `-w' switch, which prints
  101.   the current directory before and after Make runs.  The `-C' switch to
  102.   change directory, and recursive use of Make, now set `-w' automatically.
  103.  
  104. * Multiple double-colon rules for the same target will no longer have their
  105.   commands run simultaneously under -j, as this could result in the two
  106.   commands trying to change the file at the same time and interfering with
  107.   one another.
  108.  
  109. * The `SHELL' variable is now never taken from the environment.
  110.   Each makefile that wants a shell other than the default (/bin/sh) must
  111.   set SHELL itself.  SHELL is always exported to child processes.
  112.   This change was made for compatibility with POSIX.2.
  113.  
  114. * Make now accepts long options.  There is now an informative usage message
  115.   that tells you what all the options are and what they do.  Try `make --help'.
  116.  
  117. * There are two new directives: `export' and `unexport'.  All variables are
  118.   no longer automatically put into the environments of the commands that
  119.   Make runs.  Instead, only variables specified on the command line or in
  120.   the environment are exported by default.  To export others, use:
  121.     export VARIABLE
  122.   or you can define variables with:
  123.     export VARIABLE = VALUE
  124.   or:
  125.     export VARIABLE := VALUE
  126.   You can use just:
  127.     export
  128.   or:
  129.     .EXPORT_ALL_VARIABLES:
  130.   to get the old behavior.  See the node `Variables/Recursion' in the manual
  131.   for a full description.
  132.  
  133. * The commands from the `.DEFAULT' special target are only applied to
  134.   targets which have no rules at all, not all targets with no commands.
  135.   This change was made for compatibility with Unix make.
  136.  
  137. * All fatal error messages now contain `***', so they are easy to find in
  138.   compilation logs.
  139.  
  140. * Dependency file names like `-lNAME' are now replaced with the actual file
  141.   name found, as with files found by normal directory search (VPATH).
  142.   The library file `libNAME.a' may now be found in the current directory,
  143.   which is checked before VPATH; the standard set of directories (/lib,
  144.   /usr/lib, /usr/local/lib) is now checked last.
  145.   See the node `Libraries/Search' in the manual for full details.
  146.  
  147. * A single `include' directive can now specify more than one makefile to
  148.   include, like this:
  149.     include file1 file2
  150.   You can also use shell file name patterns in an `include' directive:
  151.     include *.mk 
  152.  
  153. * The default directories to search for included makefiles, and for
  154.   libraries specified with `-lNAME', are now set by configuration.
  155.  
  156. * You can now use blanks as well as colons to separate the directories in a
  157.   search path for the `vpath' directive or the `VPATH' variable.
  158.  
  159. * You can now use variables and functions in the left hand side of a
  160.   variable assignment, as in "$(foo)bar = value".
  161.  
  162. * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
  163.   The `MAKE_COMMAND' variable is now defined to the name with which make
  164.   was invoked.
  165.  
  166. * The built-in rules for C++ compilation now use the variables `$(CXX)' and
  167.   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
  168.   problems with shells that cannot have `+' in environment variable names.
  169.  
  170. * The value of a recursively expanded variable is now expanded when putting
  171.   it into the environment for child processes.  This change was made for
  172.   compatibility with Unix make.
  173.  
  174. * A rule with no targets before the `:' is now accepted and ignored.
  175.   This change was made for compatibility with SunOS 4 make.
  176.   We do not recommend that you write your makefiles to take advantage of this.
  177.  
  178. * The `-I' switch can now be used in MAKEFLAGS, and are put there
  179.   automatically just like other switches.
  180.  
  181. Version 3.61
  182.  
  183. * Built-in rules for C++ source files with the `.C' suffix.
  184.   We still recommend that you use `.cc' instead.
  185.  
  186. * If commands are given too many times for a single target,
  187.   the last set given is used, and a warning message is printed.
  188.  
  189. * Error messages about makefiles are in standard GNU error format,
  190.   so C-x ` in Emacs works on them.
  191.  
  192. * Dependencies of pattern rules which contain no % need not actually exist
  193.   if they can be created (just like dependencies which do have a %).
  194.  
  195. Version 3.60
  196.  
  197. * A message is always printed when Make decides there is nothing to be done.
  198.   It used to be that no message was printed for top-level phony targets
  199.   (because "`phony' is up to date" isn't quite right).  Now a different
  200.   message "Nothing to be done for `phony'" is printed in that case.
  201.  
  202. * Archives on AIX now supposedly work.
  203.  
  204. * When the commands specified for .DEFAULT are used to update a target,
  205.   the $< automatic variable is given the same value as $@ for that target.
  206.   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
  207.  
  208. Version 3.59
  209.  
  210. * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
  211.   variables while remaking makefiles, so recursive makes done while remaking
  212.   makefiles will behave properly.
  213.  
  214. * If the special target `.NOEXPORT' is specified in a makefile,
  215.   only variables that came from the environment and variables
  216.   defined on the command line are exported.
  217.  
  218. Version 3.58
  219.  
  220. * Suffix rules may have dependencies (which are ignored).
  221.  
  222. Version 3.57
  223.  
  224. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  225.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  226.  
  227. Version 3.55
  228.  
  229. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  230. for the Texinfo manual, but it documents the basic functionality and the
  231. switches.  For full documentation, you should still read the Texinfo manual.
  232. Thanks to Dennis Morse of Stanford University for contributing the initial
  233. version of this.
  234.  
  235. * Variables which are defined by default (e.g., `CC') will no longer be put
  236. into the environment for child processes.  (If these variables are reset by the
  237. environment, makefiles, or the command line, they will still go into the
  238. environment.)
  239.  
  240. * Makefiles which have commands but no dependencies (and thus are always
  241.   considered out of date and in need of remaking), will not be remade (if they
  242.   were being remade only because they were makefiles).  This means that GNU
  243.   Make will no longer go into an infinite loop when fed the makefiles that
  244.   `imake' (necessary to build X Windows) produces.
  245.  
  246. * There is no longer a warning for using the `vpath' directive with an explicit
  247. pathname (instead of a `%' pattern).
  248.  
  249. Version 3.51
  250.  
  251. * When removing intermediate files, only one `rm' command line is printed,
  252. listing all file names.
  253.  
  254. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  255. These are the directory-only and file-only versions of `$^' and `$?'.
  256.  
  257. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  258. directory if it exists.
  259.  
  260. * The automatic variable `$($/)' is no longer defined.
  261.  
  262. * Leading `+' characters on a command line make that line be executed even
  263. under -n, -t, or -q (as if the line contained `$(MAKE)').
  264.  
  265. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  266. only those lines are executed, not their entire rules.
  267. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  268.  
  269. Version 3.50
  270.  
  271. * Filenames in rules will now have ~ and ~USER expanded.
  272.  
  273. * The `-p' output has been changed so it can be used as a makefile.
  274. (All information that isn't specified by makefiles is prefaced with comment
  275. characters.)
  276.  
  277. Version 3.49
  278.  
  279. * The % character can be quoted with backslash in implicit pattern rules,
  280. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  281. `filter-out' functions.  A warning is issued if a `vpath' directive's
  282. pattern contains no %.
  283.  
  284. * The `wildcard' variable expansion function now expands ~ and ~USER.
  285.  
  286. * Messages indicating failed commands now contain the target name:
  287.     make: *** [target] Error 1
  288.  
  289. * The `-p' output format has been changed somewhat to look more like
  290. makefile rules and to give all information that Make has about files.
  291.  
  292. Version 3.48
  293.  
  294. Version 3.47
  295.  
  296. * The `-l' switch with no argument removes any previous load-average limit.
  297.  
  298. * When the `-w' switch is in effect, and Make has updated makefiles,
  299. it will write a `Leaving directory' messagfe before re-executing itself.
  300. This makes the `directory change tracking' changes to Emacs's compilation
  301. commands work properly.
  302.  
  303. Version 3.46
  304.  
  305. * The automatic variable `$*' is now defined for explicit rules,
  306. as it is in Unix make.
  307.  
  308. Version 3.45
  309.  
  310. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  311. specified without an argument (indicating infinite jobs).
  312. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  313.  
  314. * Make no longer checks hashed directories after running commands.
  315. The behavior implemented in 3.41 caused too much slowdown.
  316.  
  317. Version 3.44
  318.  
  319. * A dependency is NOT considered newer than its dependent if
  320. they have the same modification time.  The behavior implemented
  321. in 3.43 conflicts with RCS.
  322.  
  323. Version 3.43
  324.  
  325. * Dependency loops are no longer fatal errors.
  326.  
  327. * A dependency is considered newer than its dependent if
  328. they have the same modification time.
  329.  
  330. Version 3.42
  331.  
  332. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  333. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  334. explicit rules and expect them to be set.  Unfortunately, there is no way to
  335. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  336. are not used (and these are used by BSD make).
  337.  
  338. Version 3.41
  339.  
  340. * Make now checks to see if its hashed directories are changed by commands.
  341. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  342.  
  343. Version 3.39
  344.  
  345. * The `shell' function no longer captures standard error output.
  346.  
  347. Version 3.32
  348.  
  349. * A file beginning with a dot can be the default target if it also contains
  350. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  351.  
  352. Version 3.31
  353.  
  354. * Archive member names are truncated to 15 characters.
  355.  
  356. * Yet more USG stuff.
  357.  
  358. * Minimal support for Microport System V (a 16-bit machine and a
  359. brain-damaged compiler).  This has even lower priority than other USG
  360. support, so if it gets beyond trivial, I will take it out completely.
  361.  
  362. * Revamped default implicit rules (not much visible change).
  363.  
  364. * The -d and -p options can come from the environment.
  365.  
  366. Version 3.30
  367.  
  368. * Improved support for USG and HPUX (hopefully).
  369.  
  370. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  371. equivalent to `$(patsubst a,b,$(foo))'.
  372.  
  373. * Defining .DEFAULT with no deps or commands clears its commands.
  374.  
  375. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  376. executable).  All default implicit rules that use cpp (even indirectly), use
  377. $(CPPFLAGS).
  378.  
  379. Version 3.29
  380.  
  381. * Giving the -j option with no arguments gives you infinite jobs.
  382.  
  383. Version 3.28
  384.  
  385. * New option: "-l LOAD" says not to start any new jobs while others are
  386. running if the load average is not below LOAD (a floating-point number).
  387.  
  388. * There is support in place for implementations of remote command execution
  389. in Make.  See the file remote.c.
  390.  
  391. Version 3.26
  392.  
  393. * No more than 10 directories will be kept open at once.
  394. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  395.  
  396. Version 3.25
  397.  
  398. * Archive files will have their modification times recorded before doing
  399. anything that might change their modification times by updating an archive
  400. member.
  401.  
  402. Version 3.20
  403.  
  404. * The `MAKELEVEL' variable is defined for use by makefiles.
  405.  
  406. Version 3.19
  407.  
  408. * The recursion level indications in error messages are much shorter than
  409. they were in version 3.14.
  410.  
  411. Version 3.18
  412.  
  413. * Leading spaces before directives are ignored (as documented).
  414.  
  415. * Included makefiles can determine the default goal target.
  416. (System V Make does it this way, so we are being compatible).
  417.  
  418. Version 3.14.
  419.  
  420. * Variables that are defaults built into Make will not be put in the
  421. environment for children.  This just saves some environment space and,
  422. except under -e, will be transparent to sub-makes.
  423.  
  424. * Error messages from sub-makes will indicate the level of recursion.
  425.  
  426. * Hopefully some speed-up for large directories due to a change in the
  427. directory hashing scheme.
  428.  
  429. * One child will always get a standard input that is usable.
  430.  
  431. * Default makefiles that don't exist will be remade and read in.
  432.  
  433. Version 3.13.
  434.  
  435. * Count parentheses inside expansion function calls so you can
  436. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  437.  
  438. Version 3.12.
  439.  
  440. * Several bug fixes, including USG and Sun386i support.
  441.  
  442. * `shell' function to expand shell commands a la `
  443.  
  444. * If the `-d' flag is given, version information will be printed.
  445.  
  446. * The `-c' option has been renamed to `-C' for compatibility with tar.
  447.  
  448. * The `-p' option no longer inhibits other normal operation.
  449.  
  450. * Makefiles will be updated and re-read if necessary.
  451.  
  452. * Can now run several commands at once (parallelism), -j option.
  453.  
  454. * Error messages will contain the level of Make recursion, if any.
  455.  
  456. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  457. makefiles are read.
  458.  
  459. * A double-colon rule with no dependencies will always have its commands run.
  460. (This is how both the BSD and System V versions Make do it.)
  461.  
  462. Version 3.05
  463.  
  464. ----------------------------------------------------------------------
  465. Copyright information:
  466.  
  467. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  468.  
  469.    Permission is granted to anyone to make or distribute verbatim copies
  470.    of this document as received, in any medium, provided that the
  471.    copyright notice and this permission notice are preserved,
  472.    thus giving the recipient permission to redistribute in turn.
  473.  
  474.    Permission is granted to distribute modified versions
  475.    of this document, or of portions of it,
  476.    under the above conditions, provided also that they
  477.    carry prominent notices stating who last changed them.
  478.  
  479. Local variables:
  480. version-control: never
  481. end:
  482.